home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / script / keybinds < prev    next >
Encoding:
Text File  |  2002-10-28  |  961 b   |  44 lines

  1. #$EPIC: keybinds,v 1.2 2002/08/12 16:59:49 jnelson Exp $
  2. /*
  3.  * KEY BINDINGS, 1993
  4.  */
  5.  
  6. /********************* Key Bindings *********************************/
  7. # the cursor keys
  8. bind ^[. end_of_line
  9. bind ^[, beginning_of_line
  10.  
  11. # these are set automatically, but this is just in case.
  12. bind ^? backspace
  13. bind ^h backward_character
  14. bind ^b bold
  15. bind ^c switch_channels
  16. bind ^[i toggle_insert_mode
  17. bind ^w next_window
  18.  
  19. # erasing bindings
  20. bind ^U erase_line
  21. bind ^d^w delete_next_word
  22. bind ^d^p delete_previous_word
  23. bind ^d^e erase_to_end_of_line
  24. bind ^d^a erase_line
  25. bind ^d^y yank_from_cutbuffer
  26. bind ^d^d erase_line
  27.  
  28. # nice stuff to have
  29. bind ^d^j parse_command flush
  30. bind ^[c clear_screen
  31. bind ^[r refresh_screen
  32.  
  33. bind ^[l parse_command leave *
  34. bind ^[i parse_command join -invite
  35.  
  36. # vt100-type keys
  37. bind ^[[1~ beginning_of_line
  38. bind ^[[2~ toggle_insert_mode
  39. bind ^[[3~ delete_character
  40. bind ^[[4~ end_of_line
  41. bind ^[[5~ scroll_backward
  42. bind ^[[6~ scroll_forward
  43.  
  44.